d8f37987c955b4baed8264642b98b0e1aa884b7e,controller-client/src/main/java/org/jboss/as/controller/client/ModelControllerClientImpl.java,ExecuteAsynchronousRequest,sendRequest,#number#OutputStream#,230
Before Change
/** {@inheritDoc} */
@Override
protected void sendRequest(int protocolVersion, OutputStream output) throws IOException {
final Marshaller marshaller = getMarshaller();
try {
marshaller.start(createByteOutput(output));
marshaller.writeByte(ModelControllerClientProtocol.PARAM_OPERATION);
marshaller.writeObject(operation);
marshaller.finish();
} catch (Exception e) {
handler.handleException(e);
} finally {
After Change
/** {@inheritDoc} */
@Override
protected void sendRequest(int protocolVersion, OutputStream output) throws IOException {
output.write(ModelControllerClientProtocol.PARAM_OPERATION);
operation.writeExternal(output);
}